home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '89 / Other stuff / MPW C Load⁄Dump / LOADDUMPDEMO.h
Encoding:
C/C++ Source or Header  |  1989-06-15  |  1.9 KB  |  91 lines  |  [TEXT/MPS ]

  1. /* ========================================================================= *\
  2.     File:        LoadDumpDemo.h
  3.  
  4.     Written by:    Dave Burnard
  5.     
  6.     Comment: In the list of includes below, you can adjust which files are
  7.              actually read in to suit your specific needs.
  8.  
  9. \* ========================================================================= */
  10.  
  11. #if defined(CREATE_THE_DUMPFILE)
  12.     #undef   USE_THE_DUMPFILE
  13. #endif
  14.  
  15. #if defined(USE_THE_DUMPFILE)
  16.     
  17.     #pragma load "LOADDUMPDEMO.dump"
  18.     
  19. #else    
  20.  
  21.     #include <Types.h>
  22.     #include <SetJmp.h>
  23.     #include <StdArg.h>
  24.     #include <StdDef.h>
  25.     
  26.     #include <Resources.h>
  27.     #include <Quickdraw.h>
  28.     #include <Memory.h>
  29.     
  30.     #include <Assert.h>
  31.     #include <CType.h>
  32.     #include <ErrNo.h>
  33. //    #include <FCntl.h>
  34. //    #include <Float.h>
  35. //    #include <IOCtl.h>
  36. //    #include <Limits.h>
  37. //    #include <Locale.h>
  38.     #include <StdIO.h>
  39.     #include <StdLib.h>
  40.     #include <String.h>
  41.     
  42.     #include <ErrMgr.h>
  43.     
  44.     #include <Controls.h>
  45. //    #include <Desk.h>
  46. //    #include <DeskBus.h>
  47. //    #include <Devices.h>
  48.     #include <Dialogs.h>
  49. //    #include <DiskInit.h>
  50. //    #include <Disks.h>
  51.     #include <Errors.h>
  52.     #include <Events.h>
  53.     #include <Files.h>
  54. //    #include <FixMath.h>
  55.     #include <Fonts.h>
  56.     #include <Lists.h>
  57.     #include <Math.h>
  58.     #include <Menus.h>
  59. //    #include <Notification.h>
  60.     #include <OSEvents.h>
  61.     #include <OSUtils.h>
  62.     #include <Packages.h>
  63.     #include <Palettes.h>
  64. //    #include <Picker.h>
  65. //    #include <PrintTraps.h>
  66. //    #include <Retrace.h>
  67.     #include <SANE.h>
  68.     #include <Scrap.h>
  69. //    #include <Script.h>
  70. //    #include <SCSI.h>
  71.     #include <SegLoad.h>
  72. //    #include <Serial.h>
  73.     #include <ShutDown.h>
  74. //    #include <Slots.h>
  75. //    #include <Sound.h>
  76. //    #include <Start.h>
  77.     #include <Strings.h>
  78.     #include <TextEdit.h>
  79. //    #include <Timer.h>
  80.     #include <Traps.h>
  81.     #include <ToolUtils.h>
  82.     #include <Values.h>
  83. //    #include <Video.h>
  84.     #include <Windows.h>
  85.         
  86.     #if defined(CREATE_THE_DUMPFILE)
  87.         #pragma dump "LOADDUMPDEMO.dump"
  88.     #endif
  89.     
  90. #endif
  91.